home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Printing / PrintJobInfo.h < prev    next >
Text File  |  2000-06-23  |  347b  |  23 lines

  1. // PrintJobInfo.h
  2.  
  3. #ifndef PrintJobInfo_h
  4. #define PrintJobInfo_h
  5.  
  6. #include <Printing.h>
  7.  
  8. class PrintManager;
  9.  
  10. class PrintJobInfo: public TPrint
  11.   {
  12.     private:
  13.         TPrint& AsTPrint()     { return *this; }        
  14.             // This gets around a bug in CW Pro 4
  15.         
  16.     public:
  17.         explicit PrintJobInfo( PrintManager& );
  18.         
  19.         void ShowDialog( PrintManager& );
  20.   };
  21.  
  22. #endif
  23.